home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_10 / 1010026b < prev    next >
Encoding:
Text File  |  1995-11-01  |  290 b   |  20 lines

  1. #include <stdio.h>
  2.       
  3. #define MAXLINE 80
  4.  
  5. main()
  6. {
  7.     char s1[MAXLINE+1], s2[MAXLINE+1];
  8.     int n1, n2;
  9.           
  10.     scanf(" %[^,],%i ,%i , %[^\n]",s1,&n1,&n2,s2);
  11.     printf("%s,%d,%d,%s\n",s1,n1,n2,s2);
  12.     return 0;
  13. }
  14.  
  15. Input
  16. key 1,0x20,10,value one
  17.  
  18. Output
  19. key 1,32,10,value one
  20.